home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part1 / 3811 < prev    next >
Encoding:
Internet Message Format  |  1996-08-06  |  579 b 

  1. Path: news.lainet.com!usenet
  2. From: jason@lainet.com (Jason L. Pollack)
  3. Newsgroups: comp.lang.c++
  4. Subject: Ooops, Crashing bug addendum
  5. Date: 26 Jan 1996 06:45:17 GMT
  6. Organization: LA Internet (310)442-4670
  7. Message-ID: <4e9t9t$af0@lainet2.lainet.com>
  8. NNTP-Posting-Host: a2p10r.lainet.com
  9. Mime-Version: 1.0
  10.  
  11. When typing in the text, I forgot to include the static member variable 
  12. list, so class node should look like this:  
  13.  
  14.   static class node {
  15.      node(ClassY * it, node* nx) { item = it; nx = next; }
  16.      ClassY * item;
  17.      node * next;
  18.      } list;
  19.  
  20. Thanks a bunch,
  21. Jay
  22.  
  23.